home *** CD-ROM | disk | FTP | other *** search
/ Programmer Power Tools / Programmer Power Tools.iso / progjrn / pj_7_3b.arc / PMDEV.ARC / PMAUX.RC < prev    next >
Text File  |  1989-02-14  |  979b  |  42 lines

  1. /* 
  2.  * Resource file for the PM debugging window
  3.  *
  4.  * Written by William S. Hall
  5.  */
  6.  
  7. #include <pmwin.h>
  8. #include "pmaux.h"
  9.  
  10. STRINGTABLE
  11. {
  12.     IDS_APPNAME    "PMaux"            /* applicaton name */
  13.     IDS_ICON    "AUX"            /* icon string */
  14.     IDS_TITLE    ":PM Debugging Window"    /* title bar */
  15. }
  16.  
  17. MENU ID_RESOURCE
  18. {
  19.     MENUITEM "~Clear",IDM_CLEAR
  20.     SUBMENU "~Options",-1
  21.     {
  22.     MENUITEM "~CRonLF",IDM_CRONLF,MIS_TEXT | MIA_CHECKED
  23.     MENUITEM SEPARATOR
  24.     MENUITEM "~About...", IDM_ABOUT
  25.     }
  26. }
  27.  
  28. DLGTEMPLATE DT_ABOUT
  29. {
  30.     DIALOG "", 0,10,60,160,100, WS_SAVEBITS | FS_DLGBORDER
  31.     {
  32.     CTEXT "Microsoft Presentation Manager"    -1,4,88,156,8
  33.     CTEXT "PMaux"                      -1,4,76,156,8
  34.     CTEXT "Version 1.0, 11/30/88"        -1,4,64,156,8
  35.         CTEXT "Created by"            -1,4,52,156,8
  36.     CTEXT "Bill Hall"            -1,4,40,156,8
  37.     CTEXT "3665 Benton Street, #66"        -1,4,32,156,8
  38.         CTEXT "Santa Clara, CA 95051"        -1,4,24,156,8
  39.     DEFPUSHBUTTON "~OK"    DID_OK, 64,4,32,14,WS_GROUP
  40.     }
  41. }
  42.